home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / ssl / misc / CA.pl < prev    next >
Perl Script  |  2006-04-25  |  6KB  |  184 lines

  1. #!/usr/bin/perl
  2. #
  3. # CA - wrapper around ca to make it easier to use ... basically ca requires
  4. #      some setup stuff to be done before you can use it and this makes
  5. #      things easier between now and when Eric is convinced to fix it :-)
  6. #
  7. # CA -newca ... will setup the right stuff
  8. # CA -newreq[-nodes] ... will generate a certificate request 
  9. # CA -sign ... will sign the generated request and output 
  10. #
  11. # At the end of that grab newreq.pem and newcert.pem (one has the key 
  12. # and the other the certificate) and cat them together and that is what
  13. # you want/need ... I'll make even this a little cleaner later.
  14. #
  15. #
  16. # 12-Jan-96 tjh    Added more things ... including CA -signcert which
  17. #                  converts a certificate to a request and then signs it.
  18. # 10-Jan-96 eay    Fixed a few more bugs and added the SSLEAY_CONFIG
  19. #           environment variable so this can be driven from
  20. #           a script.
  21. # 25-Jul-96 eay    Cleaned up filenames some more.
  22. # 11-Jun-96 eay    Fixed a few filename missmatches.
  23. # 03-May-96 eay    Modified to use 'ssleay cmd' instead of 'cmd'.
  24. # 18-Apr-96 tjh    Original hacking
  25. #
  26. # Tim Hudson
  27. # tjh@cryptsoft.com
  28. #
  29.  
  30. # 27-Apr-98 snh    Translation into perl, fix existing CA bug.
  31. #
  32. #
  33. # Steve Henson
  34. # shenson@bigfoot.com
  35.  
  36. # default openssl.cnf file has setup as per the following
  37. # demoCA ... where everything is stored
  38.  
  39. my $openssl;
  40. if(defined $ENV{OPENSSL}) {
  41.     $openssl = $ENV{OPENSSL};
  42. } else {
  43.     $openssl = "openssl";
  44.     $ENV{OPENSSL} = $openssl;
  45. }
  46.  
  47. $SSLEAY_CONFIG=$ENV{"SSLEAY_CONFIG"};
  48. $DAYS="-days 365";
  49. $REQ="$openssl req $SSLEAY_CONFIG";
  50. $CA="$openssl ca $SSLEAY_CONFIG";
  51. $VERIFY="$openssl verify";
  52. $X509="$openssl x509";
  53. $PKCS12="$openssl pkcs12";
  54.  
  55. $CATOP="./demoCA";
  56. $CAKEY="cakey.pem";
  57. $CACERT="cacert.pem";
  58.  
  59. $DIRMODE = 0777;
  60.  
  61. $RET = 0;
  62.  
  63. foreach (@ARGV) {
  64.     if ( /^(-\?|-h|-help)$/ ) {
  65.         print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
  66.         exit 0;
  67.     } elsif (/^-newcert$/) {
  68.         # create a certificate
  69.         system ("$REQ -new -x509 -keyout newkey.pem -out newcert.pem $DAYS");
  70.         $RET=$?;
  71.         print "Certificate is in newcert.pem, private key is in newkey.pem\n"
  72.     } elsif (/^-newreq$/) {
  73.         # create a certificate request
  74.         system ("$REQ -new -keyout newkey.pem -out newreq.pem $DAYS");
  75.         $RET=$?;
  76.         print "Request is in newreq.pem, private key is in newkey.pem\n";
  77.     } elsif (/^-newreq-nodes$/) {
  78.         # create a certificate request
  79.         system ("$REQ -new -nodes -keyout newkey.pem -out newreq.pem $DAYS");
  80.         $RET=$?;
  81.         print "Request is in newreq.pem, private key is in newkey.pem\n";
  82.     } elsif (/^-newca$/) {
  83.         # if explicitly asked for or it doesn't exist then setup the
  84.         # directory structure that Eric likes to manage things 
  85.         $NEW="1";
  86.         if ( "$NEW" || ! -f "${CATOP}/serial" ) {
  87.         # create the directory hierarchy
  88.         mkdir $CATOP, $DIRMODE;
  89.         mkdir "${CATOP}/certs", $DIRMODE;
  90.         mkdir "${CATOP}/crl", $DIRMODE ;
  91.         mkdir "${CATOP}/newcerts", $DIRMODE;
  92.         mkdir "${CATOP}/private", $DIRMODE;
  93.         open OUT, ">${CATOP}/index.txt";
  94.         close OUT;
  95.         }
  96.         if ( ! -f "${CATOP}/private/$CAKEY" ) {
  97.         print "CA certificate filename (or enter to create)\n";
  98.         $FILE = <STDIN>;
  99.  
  100.         chop $FILE;
  101.  
  102.         # ask user for existing CA certificate
  103.         if ($FILE) {
  104.             cp_pem($FILE,"${CATOP}/private/$CAKEY", "PRIVATE");
  105.             cp_pem($FILE,"${CATOP}/$CACERT", "CERTIFICATE");
  106.             $RET=$?;
  107.         } else {
  108.             print "Making CA certificate ...\n";
  109.             system ("$REQ -new -x509 -keyout " .
  110.             "${CATOP}/private/$CAKEY -out ${CATOP}/$CACERT $DAYS");
  111.             $RET=$?;
  112.         }
  113.         }
  114.         if (! -f "${CATOP}/serial" ) {
  115.         system ("$X509 -in ${CATOP}/$CACERT -noout "
  116.             . "-next_serial -out ${CATOP}/serial");
  117.         }
  118.     } elsif (/^-pkcs12$/) {
  119.         my $cname = $ARGV[1];
  120.         $cname = "My Certificate" unless defined $cname;
  121.         system ("$PKCS12 -in newcert.pem -inkey newkey.pem " .
  122.             "-certfile ${CATOP}/$CACERT -out newcert.p12 " .
  123.             "-export -name \"$cname\"");
  124.         $RET=$?;
  125.         print "PKCS #12 file is in newcert.p12\n";
  126.         exit $RET;
  127.     } elsif (/^-xsign$/) {
  128.         system ("$CA -policy policy_anything -infiles newreq.pem");
  129.         $RET=$?;
  130.     } elsif (/^(-sign|-signreq)$/) {
  131.         system ("$CA -policy policy_anything -out newcert.pem " .
  132.                             "-infiles newreq.pem");
  133.         $RET=$?;
  134.         print "Signed certificate is in newcert.pem\n";
  135.     } elsif (/^(-signCA)$/) {
  136.         system ("$CA -policy policy_anything -out newcert.pem " .
  137.                     "-extensions v3_ca -infiles newreq.pem");
  138.         $RET=$?;
  139.         print "Signed CA certificate is in newcert.pem\n";
  140.     } elsif (/^-signcert$/) {
  141.         system ("$X509 -x509toreq -in newreq.pem -signkey newreq.pem " .
  142.                                 "-out tmp.pem");
  143.         system ("$CA -policy policy_anything -out newcert.pem " .
  144.                             "-infiles tmp.pem");
  145.         $RET = $?;
  146.         print "Signed certificate is in newcert.pem\n";
  147.     } elsif (/^-verify$/) {
  148.         if (shift) {
  149.         foreach $j (@ARGV) {
  150.             system ("$VERIFY -CAfile $CATOP/$CACERT $j");
  151.             $RET=$? if ($? != 0);
  152.         }
  153.         exit $RET;
  154.         } else {
  155.             system ("$VERIFY -CAfile $CATOP/$CACERT newcert.pem");
  156.             $RET=$?;
  157.                 exit 0;
  158.         }
  159.     } else {
  160.         print STDERR "Unknown arg $_\n";
  161.         print STDERR "usage: CA -newcert|-newreq|-newreq-nodes|-newca|-sign|-verify\n";
  162.         exit 1;
  163.     }
  164. }
  165.  
  166. exit $RET;
  167.  
  168. sub cp_pem {
  169. my ($infile, $outfile, $bound) = @_;
  170. open IN, $infile;
  171. open OUT, ">$outfile";
  172. my $flag = 0;
  173. while (<IN>) {
  174.     $flag = 1 if (/^-----BEGIN.*$bound/) ;
  175.     print OUT $_ if ($flag);
  176.     if (/^-----END.*$bound/) {
  177.         close IN;
  178.         close OUT;
  179.         return;
  180.     }
  181. }
  182. }
  183.  
  184.